Skip to content

[Chore] Claude 커스텀 커맨드 개선 및 추가#164

Merged
pooreumjung merged 5 commits into
developfrom
feat/#163-claude-setting
May 29, 2026
Merged

[Chore] Claude 커스텀 커맨드 개선 및 추가#164
pooreumjung merged 5 commits into
developfrom
feat/#163-claude-setting

Conversation

@pooreumjung

@pooreumjung pooreumjung commented May 29, 2026

Copy link
Copy Markdown
Member

🧾 요약

  • /issue, /pr 커맨드 GitHub 자동 생성 흐름 업그레이드 및 /branch 커맨드 신규 추가

🔗 이슈

✨ 변경 내용

  • /issue: 초안 확인 후 gh issue create 자동 실행 및 URL 출력
  • /pr: 초안 확인 후 gh pr create 자동 실행 및 URL 출력, base 브랜치 develop 고정, 제목 형식 [Feat] ~기능 추가 스타일로 변경
  • /branch: 이슈번호 입력 시 develop 기준으로 로컬/원격 브랜치 자동 생성 커맨드 추가

✅ 확인

  • 빌드 OK
  • 테스트 OK

pooreumjung and others added 2 commits May 30, 2026 02:24
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented May 29, 2026

Copy link
Copy Markdown

Important

Review skipped

Auto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 3e2ecab2-d44c-46e7-9f92-7630f6a13617

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feat/#163-claude-setting

Comment @coderabbitai help to get the list of available commands and usage tips.

@gemini-code-assist

Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

본 PR은 Claude 커스텀 커맨드를 통한 GitHub 이슈 및 PR 생성 과정을 더욱 안전하고 사용자 친화적으로 개선합니다. 자동화된 명령어 실행 전 사용자 확인 단계를 추가하고, 생성된 결과물의 URL을 즉시 피드백받을 수 있도록 하여 개발 생산성을 향상시켰습니다.

Highlights

  • 이슈 및 PR 생성 워크플로우 개선: 사용자가 초안을 먼저 확인하고 승인한 뒤에만 GitHub 명령어가 실행되도록 워크플로우를 변경하여 실수를 방지했습니다.
  • 생성 결과 피드백 강화: 명령어 실행 후 생성된 이슈 및 PR의 URL을 사용자에게 즉시 출력하도록 하여 접근성을 높였습니다.
  • 브랜치 정책 고정: PR 생성 시 base 브랜치를 'develop'으로 고정하여 일관된 브랜치 관리 전략을 적용했습니다.
New Features

🧠 You can now enable Memory (public preview) to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize the Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counterproductive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the Claude command templates for creating issues and pull requests to require user confirmation before executing the GitHub CLI commands and to output the generated URLs. A review comment suggests using the --body-file option instead of --body in the issue creation command to avoid potential shell escape errors with special characters.

Comment thread .claude/commands/issue.md Outdated
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@pooreumjung pooreumjung changed the title chore: Claude 커스텀 커맨드 GitHub 자동 생성 흐름 업그레이드 chore: Claude 커스텀 커맨드 개선 및 추가 May 29, 2026
@pooreumjung pooreumjung changed the title chore: Claude 커스텀 커맨드 개선 및 추가 [Chore] Claude 커스텀 커맨드 개선 및 추가 May 29, 2026
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@pooreumjung pooreumjung self-assigned this May 29, 2026
@pooreumjung pooreumjung added the enhancement New feature or request label May 29, 2026
@pooreumjung
pooreumjung merged commit 1028542 into develop May 29, 2026
1 check passed
@howooyeon
howooyeon deleted the feat/#163-claude-setting branch June 3, 2026 15:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[feat] Claude 세팅 추가

1 participant